home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist / dist6.3 / ViewKit_dev.idb / usr / include / Vk / VkSubMenu.h.z / VkSubMenu.h
C/C++ Source or Header  |  1996-09-20  |  2KB  |  66 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17.  
  18. #ifndef VKSUBMENU_H
  19. #define VKSUBMENU_H
  20.  
  21. #include <Vk/VkMenu.h>
  22. #include <Vk/VkApp.h>
  23.  
  24. class VkSubMenu: public VkMenu {
  25.  
  26.     friend class VkMenuItem;
  27.  
  28.   public:
  29.     
  30.     VkSubMenu(const char *name, 
  31.           VkMenuDesc *desc = NULL, 
  32.           XtPointer defaultClientData = NULL);
  33.  
  34.     VkSubMenu(Widget parent,
  35.           const char *, 
  36.           VkMenuDesc *desc = NULL, 
  37.           XtPointer defaultClientData = NULL);
  38.  
  39.     virtual ~VkSubMenu();    
  40.  
  41.     void showTearOff(Boolean showit);
  42.     virtual  VkMenuItemType menuType ();
  43.     Widget  pulldown() { return _pulldown; }
  44.     virtual const char* className();
  45.  
  46.    protected:
  47.  
  48.     Widget _pulldown;
  49.     virtual Widget menuParent();
  50.  
  51.     virtual void widgetDestroyed();
  52.     virtual void build(Widget);
  53.     XtWorkProcId  _workProcId;
  54.  
  55.     int _showTearOff;
  56.  
  57.     void removeWorkProc();
  58.  
  59.   private:
  60.  
  61.     static  Boolean buildCallback(XtPointer);
  62. };
  63.  
  64.  
  65. #endif
  66.